home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TEST / CALL.ASM < prev    next >
Assembly Source File  |  1997-03-22  |  207b  |  17 lines

  1. ;this is called by calldemo.c
  2.  
  3. ;see m-call.bat to compile the EXE file
  4.  
  5. .386
  6. .model flat,c
  7.  
  8. .code
  9. asm_func proc
  10.   ;this function is called by calldemo.c
  11.   mov eax,1
  12.   ret
  13. asm_func endp
  14.  
  15. end
  16.  
  17.